home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / rmdir.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  92 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.31.54;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.10.16.08.07;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * rmdir.c --
  32.  *
  33.  *    Procedure to map from Unix rmdir system call to Sprite.
  34.  *
  35.  * Copyright (C) 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: open.c,v 1.3 86/04/17 21:58:32 andrew Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "fs.h"
  45. #include "compatInt.h"
  46. #include <sys/file.h>
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * rmdir --
  53.  *
  54.  *    Procedure to map from Unix rmdir system call to Sprite Fs_RemoveDir.
  55.  *
  56.  * Results:
  57.  *    UNIX_ERROR is returned upon error, with the actual error code
  58.  *    stored in errno.  Othewise UNIX_SUCCESS is returned.
  59.  *
  60.  * Side effects:
  61.  *    None.
  62.  *
  63.  *----------------------------------------------------------------------
  64.  */
  65.  
  66. int
  67. rmdir(pathName)
  68.     char *pathName;        /* The name of the directoy to remove */
  69. {
  70.     ReturnStatus status;    /* result returned by Fs_RemoveDir */
  71.  
  72.     status = Fs_RemoveDir(pathName);
  73.     if (status != SUCCESS) {
  74.     errno = Compat_MapCode(status);
  75.     return(UNIX_ERROR);
  76.     } else {
  77.     return(UNIX_SUCCESS);
  78.     }
  79. }
  80. @
  81.  
  82.  
  83. 1.1.1.1
  84. log
  85. @Initial branch for Sprite server.
  86. @
  87. text
  88. @d11 1
  89. a11 1
  90. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/rmdir.c,v 1.1 88/06/19 14:31:54 ouster Exp $ SPRITE (Berkeley)";
  91. @
  92.